home *** CD-ROM | disk | FTP | other *** search
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xalan="http://xml.apache.org/xalan"
- xmlns:foldr-func="foldr-func"
- exclude-result-prefixes="xsl foldr-func"
- >
-
- <xsl:import href="foldl.xsl"/>
-
- <!-- This transformation must be applied to:
- numList.xml
- -->
- <foldr-func:foldr-func/>
- <xsl:variable name="vFoldrFun" select="document('')/*/foldr-func:*[1]"/>
- <xsl:output encoding="UTF-8" omit-xml-declaration="yes"/>
-
- <xsl:template match="/">
-
- <xsl:call-template name="foldl">
- <xsl:with-param name="pFunc" select="$vFoldrFun"/>
- <xsl:with-param name="pList" select="/*/*"/>
- <xsl:with-param name="pA0" select="0"/>
- </xsl:call-template>
- </xsl:template>
-
- <xsl:template match="*[namespace-uri() = 'foldr-func']">
- <xsl:param name="arg1" select="0"/>
- <xsl:param name="arg2" select="0"/>
-
- <xsl:value-of select="$arg1 + $arg2"/>
- </xsl:template>
-
- </xsl:stylesheet>
-